home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / doom / quake.zip / KASCAM17.ZIP / SOURCE / FLAG.QC < prev    next >
Text File  |  1997-02-19  |  152b  |  9 lines

  1. /*QUAKED item_deathball (.3 .3 1) (0 0 0) (32 32 32)
  2. */
  3. void() deathball_touch;
  4.  
  5. void() item_deathball =
  6. {
  7.     self.touch = deathball_touch;
  8. };
  9.